翻訳と辞書
Words near each other
・ Island (music group)
・ Island (musician)
・ Island (novel series)
・ Island (Rogers novel)
・ Island (song)
・ Island 35 Mastodon
・ Island Academy International
・ Island Africa Talent
・ Island Africa Talent (Series 1)
・ Island Air
・ Island Air (Cayman Islands)
・ Island Air (Hawaii)
・ Island Air Charters
・ Island Airlines
・ Island Airways
Island algorithm
・ Island Angel
・ Island arc
・ Island Arc (journal)
・ Island Arena
・ Island at War
・ Island Aviation
・ Island Barn Reservoir
・ Island Bay (New Zealand electorate)
・ Island Bay National Wildlife Refuge
・ Island Bay United
・ Island Bay, New Zealand
・ Island Bayou (Oklahoma)
・ Island Beach
・ Island Beach State Park


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Island algorithm : ウィキペディア英語版
Island algorithm
The island algorithm is an algorithm for performing inference on hidden Markov models, or their generalization, dynamic Bayesian networks.
It calculates the marginal distribution for each unobserved node, conditional on any observed nodes.
The island algorithm is a modification of belief propagation.
It trades smaller memory usage for longer running time: while belief propagation takes O(n) time and O(n) memory, the island algorithm takes O(n log n) time and O(log n) memory. On a computer with an unlimited number of processors, this can be reduced to O(n) total time, while still taking only O(log n) memory.〔J. Binder, K. Murphy and S. Russell. Space-Efficient Inference in Dynamic Probabilistic Networks. Int'l, Joint Conf. on Artificial Intelligence, 1997.〕
==The algorithm==

For simplicity, we describe the algorithm on hidden Markov models. It can be easily generalized to dynamic Bayesian networks by using a junction tree.
Belief propagation involves sending a message from the first node to the second, then using this message to compute a message from the second node to the third, and so on until the last node (node N). Independently, it performs the same procedure starting at node N and going in reverse order. The i-th message depends on the (i-1)-th, but the messages going in opposite directions do not depend on one another. The messages coming from both sides are required to calculate the marginal distribution for a node.
In normal belief propagation, all messages are stored, which takes O(n) memory.
The island begins by passing messages as usual, but it throws away the i-th message after sending the (i+1)-th one.
When the two message-passing procedures meet in the middle, the algorithm recurses on each half of the chain.
Since the chain is divided in two at each recursive step, the depth of the recursion is log(N). Since every message must be passed again at each level of depth, the algorithm takes O(n log n) time on a single processor. Two messages must be stored at each recursive step, so the algorithm uses O(log n) space.
Given log(N) processors, algorithm can be run in O(n) time by using a separate processor to do each recursive step (thus taking N/2 + N/4 + N/8 ... = 1 time on a single processor).

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Island algorithm」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.